Return
An object containing theshow and close functions to initiate NFT transfers from your account to another account
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hook that provides functions to transfer NFTs from your account to another account
show and close functions to initiate NFT transfers from your account to another account
import { useTransferModal } from "@0xsequence/marketplace-sdk/react";
const { show: showTransferModal } = useTransferModal();
return (
<button
onClick={() => {
showTransferModal({
collectionAddress: collectionAddress,
chainId: collectionChainId,
collectibleId: tokenId,
});
}}
>
Transfer
</button>
);
Was this page helpful?